home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cutenews_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  87 lines

  1. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  2. #  based on work from
  3. # (C) Tenable Network Security
  4. #
  5. # Ref: Debasis Mohanty
  6. #
  7. # This script is released under the GNU GPLv2
  8.  
  9. if(description)
  10. {
  11.  script_id(14318);
  12.  script_bugtraq_id(10948);
  13.  if (defined_func("script_xref")) {
  14.    script_xref(name:"OSVDB", value:"8833");
  15.  }
  16.  script_version ("$Revision: 1.10 $");
  17.  
  18.  name["english"] = "CuteNews XSS";
  19.  
  20.  script_name(english:name["english"]);
  21.  
  22.  desc["english"] = "
  23. CuteNews is installed on this remote host.
  24.  
  25. According to it's version number, this host is vulnerable to a 
  26. cross-site-scripting (XSS) attack.  An attacker, exploiting this
  27. flaw, would need to be able to coerce a user to browse to a purposefully
  28. malicious URI.  Upon successful exploitation, the attacker would be able
  29. to run code within the web-browser in the security context of the
  30. CuteNews server.
  31.  
  32. Solution : Upgrade to CuteNews v1.3.2 or newer
  33.  
  34. Risk factor : Medium";
  35.  
  36.  
  37.  
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "Checks for the presence of show_archives.php";
  42.  
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_ATTACK);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  48.  
  49.  family["english"] = "CGI abuses : XSS";
  50.   script_family(english:family["english"]);
  51.  script_dependencie("cutenews_detect.nasl", "http_version.nasl", "cross_site_scripting.nasl");
  52.  script_require_ports("Services/www", 80);
  53.  exit(0);
  54. }
  55.  
  56. #
  57. # The script code starts here
  58. #
  59.  
  60.  
  61. include("http_func.inc");
  62. include("http_keepalive.inc");
  63.  
  64. port = get_http_port(default:80);
  65. if(!get_port_state(port)) exit(0);
  66. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  67. if(!can_host_php(port:port)) 
  68.     exit(0);
  69.  
  70.  
  71. # Test an install.
  72. install = get_kb_item(string("www/", port, "/cutenews"));
  73. if (isnull(install)) exit(0);
  74. matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");
  75. if (!isnull(matches)) {
  76.   loc = matches[2];
  77.   req = http_get(item:string(loc, "/show_archives.php?archive=<script>foo</script>&subaction=list-archive&"),
  78.          port:port);            
  79.   r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  80.   if( r == NULL ) exit(0);
  81.   if(egrep(pattern:"<script>foo</script>", string:r))
  82.   {
  83.     security_warning(port);
  84.     exit(0);
  85.   }
  86. }
  87.